Cancelled
Push — release/2.1.0 ( 9888ea )
by Kevin Van
09:55 queued 09:52
created

Sponsor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 4 1
1
import React, { Component } from "react"
2
3
import { SingleImageCard } from "../components/cards"
4
5
class Sponsor extends Component {
6
  render() {
7
    const { localFile, uri = null } = this.props
8
9
    return <SingleImageCard localFile={localFile} link={uri} />
10
  }
11
}
12
13
export default Sponsor
14